home *** CD-ROM | disk | FTP | other *** search
/ Revista CD Expert 37 / CD Expert nº 37.iso / LastCall / lastcall.exe / stuff / lastcall.dxr / 00069.ls < prev    next >
Encoding:
Text File  |  2000-03-27  |  282 b   |  13 lines

  1. on extractRecipeStuff
  2.   global gRecipes, propList
  3.   propList = [:]
  4.   repeat with thisOne in gRecipes
  5.     repeat with X = 1 to count(thisOne)
  6.       thisProp = getPropAt(thisOne, X)
  7.       setaProp(propList, thisProp, 1)
  8.     end repeat
  9.   end repeat
  10.   sort(propList)
  11.   put propList
  12. end
  13.